home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power CD-ROM!! 8
/
Power CD-ROM 8.iso
/
prgmming
/
skelet
/
skeleton.rcv
< prev
next >
Wrap
Text File
|
1994-08-15
|
4KB
|
93 lines
//---------------------------------------------------------------------------
// skeleton.rcv (modified from vbx.rcv supplied with VB)
//
// Copyright (c) <Your Company Name> 1994
//
// Portions of this product are based on original
// source code from Anton Software Limited.
//
//---------------------------------------------------------------------------
// This RC fragment defines version information. It should be #include'd
// into the component's main .RC file.
//---------------------------------------------------------------------------
#ifdef APSTUDIO_INVOKED
#error This file is not editable by AppStudio
#endif
//---------------------------------------------------------------------------
// Ver.h defines constants needed by the VS_VERSION_INFO structure.
//---------------------------------------------------------------------------
#include <ver.h>
//---------------------------------------------------------------------------
// The following section defines values used in the version data structure
// for all files, and which do not change.
//---------------------------------------------------------------------------
// Default is privatebuild, #define VER_OFFICALBUILD to get an official build.
#ifndef VER_OFFICALBUILD
#define VER_OFFICALBUILD | VS_FF_PRIVATEBUILD
#endif
// Default is prerelease, #define VER_RELEASE to get a release build.
#ifndef VER_RELEASE
#define VER_RELEASE | VS_FF_PRERELEASE
#endif
#ifdef RC_INVOKED
//---------------------------------------------------------------------------
// Now, actually define the resource.
//---------------------------------------------------------------------------
VS_VERSION_INFO VERSIONINFO
FILEVERSION VBX_VERSION
PRODUCTVERSION VBX_VERSION
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS (0 VER_OFFICALBUILD VER_RELEASE)
FILEOS VOS__WINDOWS16
FILETYPE VFT_DLL
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation"
0x0809,0
END
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "Acknowledgement", VBX_ACKNOWLEDGEMENT
VALUE "CompanyName", VBX_COMPANYNAME
VALUE "FileDescription", VBX_FILEDESCRIPTION
VALUE "FileVersion", VBX_VERSION_STR
VALUE "InternalName", VBX_INTERNALNAME
VALUE "LegalCopyright", VBX_LEGALCOPYRIGHT
VALUE "LegalTrademarks", VBX_LEGALTRADEMARKS
VALUE "OriginalFilename",VBX_ORIGINALFILENAME
VALUE "Comments", VBX_COMMENTS
VALUE "ProductName", VBX_PRODUCTNAME
VALUE "ProductVersion", VBX_VERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
//-------------------------------------------------------------------
// The following line should only be modified for localized versions.
// It consists of any number of WORD,WORD pairs, with each pair
// describing a language,codepage combination supported by the file.
//
// For example, a file might have values "0x409,1252" indicating that
// it supports English language (0x409) in the Windows ANSI codepage
// (1252).
//-------------------------------------------------------------------
VALUE "Translation", 0x409, 1252
END
END
#endif // RC_INVOKED
//---------------------------------------------------------------------------